home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / GLYPHV11.ZIP / SOURCES / GLYPHV.DPR next >
Encoding:
Text File  |  1995-10-13  |  803 b   |  26 lines

  1. program Glyphv;
  2.  
  3. (*******************************************************************)
  4. (* Glyph Viewer - version 1.0 - 10/1995                            *)
  5. (*        by Stephane BONNELL                                        *)
  6. (*                                                                   *)
  7. (*    This program is distributed as freeware.                       *)
  8. (*  But if you like it, please send me an email or a postcard.     *)
  9. (*        EMail: sbonnell@teaser.fr                                   *)
  10. (*      SMail: 24 bvd Arago, 75013 Paris, France                   *)
  11. (*******************************************************************)
  12.  
  13. uses
  14.   Forms,
  15.   Main in 'MAIN.PAS' {fmMain},
  16.   Info in 'INFO.PAS' {InfoBox};
  17.  
  18. {$R *.RES}
  19.  
  20. begin
  21.   Application.Title := 'Glyph Viewer';
  22.   Application.CreateForm(TfmMain, fmMain);
  23.   Application.CreateForm(TInfoBox, InfoBox);
  24.   Application.Run;
  25. end.
  26.